property draggableDataMember -- a created cast member holding pre-runtime gathered and sorted data
property dragSpriteColor -- the scoreColor of sprites that will be dragged to targets
property draggableList -- a specially formatted list of draggable sprites
property isDraggableList -- a list of currently draggable sprites -- for SinglePoint Draggable activities.
on new me
-- constants:
set draggableDataMember = "DraggablePredefines" -- currently we are using the name of the storage field.
set dragSpriteColor = 2 -- corresponds to green in the score. (0 = white)
set ancestor = new (script "TargetListMgmt")
set isDraggableList = []
setAt (isDraggableList, numSprites (me), 0)
gatherDraggableSpriteInfo (me)
return me
end
on destruct me
if objectP (ancestor) then destruct (ancestor)
set ancestor = 0
end
-- gather draggable sprite information and return a list:
on gatherDraggableSpriteInfo me
-- get presaved draggable data if we are in protected mode:
if the movieName contains ".dxr" or the movieName contains ".exe" then
set draggableList = value (field draggableDataMember)
return
end if
set initList = [:]
set num = 0
-- cycle through all sprites:
repeat with spr = 1 to numSprites (me)
-- sprites must be certain colors to be used in the DragDrop Game:
if the scoreColor of sprite spr = dragSpriteColor then
set num = num + 1
-- gather usable information:
set tmpLst = [#coverNum:the memberNum of sprite spr, #coverLib: the castLibNum of sprite spr, #loc:(the loc of sprite spr), #identifier:value ("#" & the name of member the memberNum of sprite spr of castLib the castLibNum of sprite spr), #myNum:0, #myLib:0, #matchSpriteList:0, #showFlag:0]
-- add to the initList
addProp (initList, spr, tmpLst)
end if
end repeat
if not count (initList) then alert "There are no draggable sprites for this activity. Check sprite score colors."